home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / icecast_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10600);
  10.  script_bugtraq_id(2264);
  11.  script_cve_id("CVE-2001-0197");
  12.  script_version ("$Revision: 1.9 $");
  13.  
  14.  name["english"] = "ICECast Format String";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote server claims to be running ICECast 1.3.7 or 1.3.8beta2.
  19.  
  20. These versions are vulnerable to a format string attack which may
  21. allow an attacker to execute arbitary commands on this host.
  22.  
  23.  
  24. Solution : Upgrade to a newer version.
  25. Risk factor : High";
  26.  
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "icecast format string";
  32.  script_summary(english:summary["english"]);
  33.  
  34.  script_category(ACT_GATHER_INFO);
  35.  
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison",
  38.         francais:"Ce script est Copyright (C) 2001 Renaud Deraison");
  39.  family["english"] = "Gain root remotely";
  40.  family["francais"] = "Passer root α distance";
  41.  script_family(english:family["english"], francais:family["francais"]);
  42.  script_dependencie("find_service.nes");
  43.   script_require_ports("Services/www", 8000);
  44.  exit(0);
  45. }
  46.  
  47. #
  48. # The script code starts here
  49. #
  50.  
  51. include("http_func.inc");
  52.  
  53. port = get_kb_item("Services/www");
  54. if(!port) port = 8000;
  55.  
  56. if(get_port_state(port))
  57. {
  58. soc = open_sock_tcp(port);
  59. if(soc)
  60. {
  61.  req = http_head(item:"/", port:port);
  62.  send(socket:soc,
  63.     data:req);
  64.  
  65.   r = http_recv(socket:soc);
  66.   close(soc);
  67.   str = strstr(r, "icecast");
  68.   if(str)
  69.   {
  70.     if(ereg(pattern:"icecast/1\.3\.(7|8 *beta[012])", string:str))
  71.       security_hole(port);
  72.   }
  73.    
  74.  }
  75. }
  76.